export interface RemoveCookieProps { name: string; /** Path must match the path used when creating the cookie */ path?: string; } export default function RemoveCookie({ name, path }: RemoveCookieProps): boolean;