export interface GetCookieProps { name: string; /** What to return if the cookie doesn't exist */ fallback?: any; } export default function GetCookie({ name, fallback }: GetCookieProps): any;