import { StyledProps } from '@kuma-ui/system'; declare const defaultSelectTag = "select"; type SelectSpecificProps = {}; declare const isSelectProps: (propName: unknown) => propName is SelectSpecificProps; declare const selectDefaultProps: StyledProps; declare const selectHandler: (props: SelectSpecificProps) => {}; export { SelectSpecificProps, defaultSelectTag, isSelectProps, selectDefaultProps, selectHandler };