///
import { type StyledProps } from "./Styled";
/**
* moaui Styled Check
*
* @param props - defaultChecked, onChange, required, checked, disabled, name, namePlacement, ariaLabel, indeterminate
* @example
* {}}
* required={false || true}
* checked={false || true}
* disabled={false || true}
* name=""
* namePlacement="start" || "end" || "top" || "bottom"
* ariaLabel="CheckBox"
* indeterminate={false || true}
* />
* @returns React.ReactElement
*/
declare const Check: import("react").ForwardRefExoticComponent>;
declare const SampleProps: {
id: string;
defaultChecked: boolean;
onChange: () => void;
required: boolean;
disabled: boolean;
name: string;
namePlacement: import("../../Common/UnionType").CustomUnionType;
ariaLabel: string;
indeterminate: boolean;
};
export default Check;
export { type StyledProps as CheckProps, SampleProps as CheckSample, };
//# sourceMappingURL=index.d.ts.map