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