import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemePopovers = {
    content: CSSObject;
    default: CSSObject;
    title: CSSObject;
};
export declare const getPopovers: (theme: ThemeValues) => ThemePopovers;
