import React from "react"; import type GroupComponentProps from "./private/types/GroupComponentProps"; import type LabelProps from "./private/types/LabelProps"; import type WithChildren from "./private/types/WithChildren"; import type InputProps from "../input/private/types/InputProps"; import { NativeSelectProps } from "../nativeSelect/NativeSelect"; declare const Group: GroupComponentProps & { FirstInput: React.ForwardRefExoticComponent>; LastInput: React.ForwardRefExoticComponent>; FirstInsetInput: React.ForwardRefExoticComponent & { className?: string | undefined; error?: boolean | undefined; type?: "number" | "button" | "search" | "time" | "image" | "text" | "hidden" | "color" | "checkbox" | "radio" | (string & {}) | "submit" | "reset" | "tel" | "url" | "email" | "password" | "date" | "datetime-local" | "month" | "range" | "week" | undefined; isRtl?: boolean | undefined; isLabel?: boolean | undefined; } & { children?: React.ReactNode; } & React.RefAttributes> & { Label: ({ children, className }: WithChildren) => React.JSX.Element; }; LastInsetInput: React.ForwardRefExoticComponent & { className?: string | undefined; error?: boolean | undefined; type?: "number" | "button" | "search" | "time" | "image" | "text" | "hidden" | "color" | "checkbox" | "radio" | (string & {}) | "submit" | "reset" | "tel" | "url" | "email" | "password" | "date" | "datetime-local" | "month" | "range" | "week" | undefined; isRtl?: boolean | undefined; isLabel?: boolean | undefined; } & { children?: React.ReactNode; } & React.RefAttributes> & { Label: ({ children, className }: WithChildren) => React.JSX.Element; }; FirstSelect: React.ForwardRefExoticComponent>; LastSelect: React.ForwardRefExoticComponent>; FirstInsetSelect: React.ForwardRefExoticComponent, "size"> & { className?: string | undefined; size?: "sm" | "md" | "lg" | undefined; error?: boolean | undefined; disabled?: boolean | undefined; label: React.ReactNode; readOnly?: boolean | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>; LastInsetSelect: React.ForwardRefExoticComponent, "size"> & { className?: string | undefined; size?: "sm" | "md" | "lg" | undefined; error?: boolean | undefined; disabled?: boolean | undefined; label: React.ReactNode; readOnly?: boolean | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>; }; export default Group; //# sourceMappingURL=Group.d.ts.map