type Props = {
    app?: {
        themeColor?: string;
        tileColor?: string;
        shortName?: string;
    };
    robots?: string;
    title?: string;
    description?: string;
    canonical?: string;
};
declare const Head: import("svelte").Component<Props, {}, "">;
type Head = ReturnType<typeof Head>;
export default Head;
