import type { ArrowStylePropsArg, BodyStylePropsArg } from './types'; import type { StyleObject } from 'styletron-standard'; /** * Main popover container element that gets positioned next to the anchor */ export declare function getBodyStyles(_: any, props: BodyStylePropsArg): StyleObject; export declare const Body: import("../../style/styled").StyledComponent; /** * Arrow shown between the popover and the anchor element */ export declare function getArrowStyles(_: any, props: ArrowStylePropsArg): StyleObject; export declare const Arrow: import("../../style/styled").StyledComponent; /** * Extra div that holds the popover content. This extra element * is needed for the arrow–the arrow is just a 45deg rotated div, * and rendering this extra element on top with a solid background * clips the part of the arrow that extends into the popover. */ export declare function getInnerStyles(): StyleObject; export declare const Inner: import("../../style/styled").StyledComponent; /** * A drop-in component that provides the recommended padding * for popovers. Mostly a convenience for users so they don't * have to define this themselves. */ export declare const Padding: import("../../style/styled").StyledComponent; export declare const Hidden: import("../../style/styled").StyledComponent;