import React, { FunctionComponent } from 'react';
type InertiaHeadProps = {
    title?: string;
    children?: React.ReactNode;
};
type InertiaHead = FunctionComponent<InertiaHeadProps>;
declare const Head: InertiaHead;
export default Head;
