import { DefineComponent } from 'vue';
export type InertiaHead = DefineComponent<{
    title?: string;
}>;
declare const Head: InertiaHead;
export default Head;
