///
export type StyledProps = {
/**
* current element id
* @defaultValue ""
* @optional
* @type string
*/
id?: React.HtmlHTMLAttributes["id"];
/**
* If `true`, the component is checked.
*/
checked?: boolean;
/**
* The label of the component.
* It is displayed right of the component.
*/
label?: string;
/**
* Callback fired when the state is changed.
*
* @param {React.ChangeEvent} event The event source of the callback.
* You can pull out the new value by accessing `event.target.value` (string).
* You can pull out the new checked state by accessing `event.target.checked` (boolean).
*/
onChange?: (event: React.ChangeEvent, checked: boolean) => void;
/**
* If `true`, the component is disabled.
*/
disabled?: boolean;
};
declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element;
export default ThemedComponent;
//# sourceMappingURL=Styled.d.ts.map