import { ClipboardEventHandler } from 'react'; import { CSSObject } from 'styled-components'; import { CSSProperties } from 'react'; import { DefaultTheme } from 'styled-components'; import { DetailedHTMLProps } from 'react'; import { FocusEventHandler } from 'react'; import { HTMLAttributes } from 'react'; import { HTMLInputAutoCompleteAttribute } from 'react'; import { HTMLInputTypeAttribute } from 'react'; import { InputHTMLAttributes } from 'react'; import { IStyledComponentBase } from 'styled-components/dist/types'; import { JSX } from 'react/jsx-runtime'; import { KeyboardEventHandler } from 'react'; import { PropsWithChildren } from 'react'; import { Ref } from 'react'; import { Substitute } from 'styled-components/dist/types'; declare type AddDollarSign = { [K in keyof T as `$${string & K}`]: T[K]; }; declare type AddDollarSign_2 = { [K in keyof T as `$${string & K}`]: T[K]; }; declare interface addErrorProps { error?: ErrorMessageProps; } declare type addFontProps = { font?: FontSizeStylesProps; }; declare type addOutlineProps = { isReadOnly?: boolean; isDisabledOutline?: boolean; isOutlineBoxShadow?: boolean; }; declare interface addSXProps { sx?: SXProps; } declare type BaseInputProps = CommonInputProps & (ControlledValue | UncontrolledValue); declare type CommonInputProps = addErrorProps & addFontProps & addOutlineProps & addSXProps & { ref?: Ref; name?: string; ariaLabel?: string; id?: string; className?: string; isNotShowHoverStyle?: boolean; autoComplete?: HTMLInputAutoCompleteAttribute | string; isAllowEmptyFormatting?: boolean; genre: TInputGenre; size: IThemeSize; tabIndex?: number; isWidthAsHeight?: boolean; isNiceNumber?: boolean; isDisabled?: boolean; isLoading?: boolean; isInputEffect?: boolean; isRequired?: boolean; isCenter?: boolean; isNoSpaces?: boolean; onBlur?: FocusEventHandler; onPaste?: ClipboardEventHandler; onFocus?: FocusEventHandler; onKeyDown?: KeyboardEventHandler; placeholder?: string; isBold?: boolean; postfixChildren?: InputChildrenProps; prefixChildren?: InputChildrenProps; inputMode?: 'text' | 'none' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'; maxLength?: number; minLength?: number; }; declare type ControlledValue = { value: string | number | null | undefined; defaultValue?: never; }; declare type ErrorMessageProps = { errorMessage?: string; isError?: boolean; isErrorAbsolute?: boolean; size?: IThemeSize; sx?: addSXProps['sx']; } & addFontProps; declare type FontSizeStylesProps = { size?: TypographyDataProps['size']; weight?: TypographyDataProps['weight']; family?: TypographyDataProps['family']; height?: TypographyDataProps['height']; }; declare interface InputChildrenProps extends PropsWithChildren { left: string; right: string; width: string; } declare type InputStandardProps = BaseInputProps & { variety: 'standard'; onChange?: (value: string) => void; type?: HTMLInputTypeAttribute; min?: number; max?: number; step?: number; }; declare type IThemeDevice = 'default' | 'tablet' | 'mobile'; declare type IThemeFontFamily = 'Inter' | 'Roboto' | 'Work Sans' | 'Roboto Mono' | 'Manrope'; declare type IThemeGenreInput = Record, IThemeGenreTypeDefault>; declare type IThemeGenreName = 'gray' | 'grayBorder' | 'black' | 'blackBorder' | 'product' | 'productBorder' | 'white' | 'greenTransparent' | 'redTransparent' | 'yellowTransparent' | 'realebail-product' | 'realebail-gray' | 'realebail-white' | 'bustmarket-gray-violet' | 'bustmarket-gray' | 'bustmarket-violet' | 'bustmarket-white-violet'; declare interface IThemeGenreTypeDefault { background: { rest: string; hover: string; }; border: { rest: string; hover: string; }; color: { rest: string; hover: string; placeholder: string; }; } declare type IThemePaletteKeys = 'transparent' | 'black100' | 'black80' | 'black60' | 'black50' | 'black40' | 'black10' | 'black05' | 'black04' | 'blackHelena' | 'blackJanice' | 'grayJanice' | 'grayKaren' | 'grayMonica' | 'graySandra' | 'grayPatricia' | 'graySarah' | 'grayStassie' | 'grayAdriana' | 'greenGoogle' | 'grayBarbara' | 'grayStephanie' | 'grayFrances' | 'grayTina' | 'green100' | 'green50' | 'green25' | 'green10' | 'green10Background' | 'whiteStandard' | 'whiteJanice' | 'yellowGoogle' | 'yellow100' | 'yellow50' | 'yellow25' | 'yellow10' | 'yellow10Background' | 'redGoogle' | 'red100' | 'red50' | 'red25' | 'red10' | 'red10Background' | 'blueGoogle' | 'blueRest' | 'blueActive' | 'blueHover' | 'blueFocus' | 'blueBr' | 'blueKaren' | 'blueMonica' | 'violetStephanie' | 'violetJanice' | 'amnezia' | 'inherit' | 'currentColor'; declare type IThemeSize = 'large' | 'largeMedium' | 'medium' | 'mediumSmall' | 'small'; declare type IThemeTypographyWeight = 100 | 300 | 400 | 500 | 700 | 900; declare const Range_2: (props: RangeProps) => JSX.Element; export { Range_2 as Range } export declare type RangeComponentProps = AddDollarSign_2>; export declare type RangeProps = { values: number[]; onChange: (values: number[]) => void; step: number; min: number; max: number; isShowMarker?: boolean; onBlur?: FocusEventHandler; } & Pick; export declare const RangeThumb: IStyledComponentBase<"web", Substitute, HTMLInputElement>, RangeThumbProps>> & string; export declare type RangeThumbProps = RangeComponentProps & AddDollarSign_2<{ colorBorder: string; colorBackground: string; }>; export declare const RangeTrack: IStyledComponentBase<"web", Substitute, HTMLDivElement>, AddDollarSign>>> & string; export declare const RangeWrapper: IStyledComponentBase<"web", Substitute, HTMLDivElement>, AddDollarSign>>> & string; export declare type RangeWrapperProps = AddDollarSign_2>; declare type SXProps = ({ default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }) | ((theme: DefaultTheme) => { default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }); declare type TInputGenre = keyof IThemeGenreInput; declare type TypographyDataProps = TypographyDefaultProps & { size?: number; }; declare type TypographyDefaultProps = { align?: CSSProperties['textAlign']; color?: IThemePaletteKeys; cursor?: CSSProperties['cursor']; decoration?: CSSProperties['textDecoration']; family?: IThemeFontFamily; flex?: string; height?: number | string; isHoverUnderlining?: boolean; letterSpacing?: CSSProperties['letterSpacing']; line?: number; overflow?: CSSProperties['overflow']; shadow?: 'shadowPulse'; transform?: CSSProperties['textTransform']; weight?: IThemeTypographyWeight; wrap?: CSSProperties['textWrap']; isNoUserSelect?: boolean; }; declare type UncontrolledValue = { defaultValue: string | number | null | undefined; value?: never; }; export { }