import { Theme } from "../styles"; import { SxProps } from "@suid/system"; import StyledProps from "@suid/system/styledProps"; import * as ST from "@suid/types"; export interface NativeSelectInputProps extends ST.PropsOf<"select"> { disabled?: boolean; IconComponent: ST.ElementType; inputRef?: ST.Ref; variant?: "standard" | "outlined" | "filled"; sx?: SxProps; } export declare const nativeSelectSelectStyles: (data: { ownerState: any; theme: Theme; }) => StyledProps; export declare const nativeSelectIconStyles: (data: { ownerState: any; theme: Theme; }) => StyledProps; /** * @ignore - internal component. */ declare const NativeSelectInput: (props: NativeSelectInputProps) => import("solid-js").JSX.Element; export default NativeSelectInput; //# sourceMappingURL=NativeSelectInput.d.ts.map