import { IObject } from '../interfaces';
declare const cookie: {
    set: (name: string, value: any, opt: IObject) => void;
    get: (name: string) => string;
};
export default cookie;
//# sourceMappingURL=cookie.d.ts.map