import { type StyledProps } from "./Styled"; /** * moaui Styled Chip * * @param props - severity, bgColor, color, size, label, disabled * @example * * @returns React.ReactElement */ declare function Chip(props: StyledProps): import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; severity: import("../../Common/UnionType").CustomUnionType; bgColor: string; color: string; size: import("../../Common/UnionType").CustomUnionType; label: string; disabled: boolean; }; export default Chip; export { type StyledProps as ChipProps, SampleProps as ChipSample, }; //# sourceMappingURL=index.d.ts.map