import * as React from "react"; import type { DrawerItemOwnProps } from "./types"; import type { PolymorphicWithRef } from "../types"; import { LabelTypography } from "../LabelTypography"; declare type LabelProps = React.ComponentProps & { labelText?: string; }; declare type DrawerItemProps = PolymorphicWithRef; declare type DrawerItemElement = (props: DrawerItemProps) => React.ReactElement>; declare const _default: DrawerItemElement & { Label: (props: LabelProps) => React.FunctionComponentElement; Icon: = React.ElementType>(props: import("../Icon").IconOwnProps & import("../types/PolymorphicWithRef").ComponentProp & Omit>, "size" | "component">) => React.ReactElement & Omit>, "size" | "component">, string | React.JSXElementConstructor>; }; export default _default; //# sourceMappingURL=DrawerItem.d.ts.map