import { type StyledProps } from "./Styled"; /** * moaui Styled Panel * * @param props - children, variant, width, height, flexItem, backgroundColor, borderRadius, border, relative * @example * * {children} * * @returns JSX.Element */ declare function Panel(props: StyledProps): JSX.Element; declare const SampleProps: { id: string; children: import("react/jsx-runtime").JSX.Element; variant: import("../../Common/UnionType").CustomUnionType; width: string; height: string; flexItem: boolean; backgroundColor: string; borderRadius: string; border: string; relative: boolean; }; export default Panel; export { type StyledProps as PanelProps, SampleProps as PanelSample, }; //# sourceMappingURL=index.d.ts.map