interface IOptions {
    domain?: string;
    path?: string;
    'max-age'?: number;
    expires?: Date;
    secure?: boolean;
    samesite?: 'strict' | 'lax';
}
declare const _default: (name: string, value: string, options: IOptions) => void;
export default _default;
