export interface MetaProps { name: string; content: string; } export default function useMeta({ name, content }: MetaProps): void;