import { PaddingProp, ClassNameProp, ScrollProp, SizeProps, StylesProp, SizingProp, CrossAxisAlignProp } from "../common"; /** * A set of props that can help you build layout-customizable components */ export interface ComponentProps extends ClassNameProp, ScrollProp, PaddingProp, SizingProp, CrossAxisAlignProp, SizeProps, StylesProp { } /** * Takes a set of component props * - actions certain props to update the `props` className * @returns `props` with actioned members omitted and className updated */ export declare function component(props: T, defaults?: ComponentProps): Omit; //# sourceMappingURL=component.d.ts.map