import { IOptions, IStyles } from './types';
export declare type IGetProcessedCssFn = typeof getProcessedCss;
export declare type IGetStaticCssFn = typeof getStaticCss;
export declare function getProcessedCss(styles: IStyles, options?: Partial<IOptions>): string;
export declare function getStaticCss(options?: Pick<IOptions, 'prefixSelector'>): string;
