import type { PropsWithChildren } from 'react'; import { BoxProps } from '../../atoms/box/index.js'; import type { VariantType } from '../../theme.js'; /** * Props passed to DropDownItem * Extends {@link BoxProps} * * @memberof DropDown * @extends BoxProps */ export type DropDownItemProps = PropsWithChildren & BoxProps & { colorVariant?: VariantType; onClick?: (e: Event) => void; }; /** * @component * @private */ export declare const DropDownItem: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, { children?: import("react").ReactNode; } & import("styled-system").BorderProps>, import("csstype").Property.Border> & import("styled-system").BorderRadiusProps>, string | number | symbol> & Omit>, string | number | symbol>, "color"> & { color?: string | undefined; } & import("styled-system").LayoutProps>> & Omit>>, "flex"> & import("styled-system").PositionProps>> & import("styled-system").ShadowProps>> & import("styled-system").SpaceProps>, string | number | symbol> & { flex?: boolean | import("styled-system").ResponsiveValue, Required>> | undefined; variant?: "grey" | "transparent" | "white" | "card" | "container" | undefined; animate?: boolean | undefined; className?: string | undefined; } & { colorVariant?: VariantType | undefined; onClick?: ((e: Event) => void) | undefined; }, never>; export default DropDownItem;