import { type StyledProps } from "./Styled"; /** * moaui Styled Button * * @param props - onClick, variant, disabled, width, color, loading, children * @example * * @returns React.ReactElement */ declare const Button: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; children: string; onClick: () => void; variant: import("../../Common/UnionType").CustomUnionType; disabled: boolean; width: string; color: import("../../Common/UnionType").CustomUnionType; loading: boolean; }; export default Button; export { type StyledProps as ButtonProps, SampleProps as ButtonSample }; //# sourceMappingURL=index.d.ts.map