@activecollab/components
Version:
ActiveCollab Components
36 lines • 2.26 kB
TypeScript
/// <reference types="react" />
import { InputProps } from "./Input";
import { InputMode, InputSize } from "./types";
interface StyledInputWrapperProps {
$size?: InputSize;
$invalid?: boolean;
$disabled?: boolean;
$mode?: InputMode;
}
export declare const StyledInputWrapper: import("styled-components").StyledComponent<"div", any, StyledInputWrapperProps, never>;
interface StyledInputProps extends Pick<InputProps, "align"> {
$size?: InputSize;
$loading?: boolean;
$mode?: InputMode;
$invalid?: boolean;
}
export declare const StyledInput: import("styled-components").StyledComponent<"input", any, StyledInputProps, never>;
export declare const StyledPasswordIndicatorWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
export declare const StyledPasswordIndicator: import("styled-components").StyledComponent<"div", any, {
$strength: number;
$index: number;
}, never>;
export declare const StyledInputSelectTrigger: import("styled-components").StyledComponent<"div", any, {
$size: string;
$disabled?: boolean | undefined;
}, never>;
export declare const StyledFlagTriggerLabel: import("styled-components").StyledComponent<"span", any, {
$size: "small" | "regular" | "big";
}, never>;
export declare const StyledOptionFlag: import("styled-components").StyledComponent<"span", any, {}, never>;
export declare const StyledOptionName: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../Typography").IBodyProps & Omit<import("../Typography/Typography").ITypographyProps, "variant" | "weight"> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
export declare const StyledOptionCode: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../Typography").IBodyProps & Omit<import("../Typography/Typography").ITypographyProps, "variant" | "weight"> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
export declare const StyledOptionRowEnd: import("styled-components").StyledComponent<"span", any, {}, never>;
export declare const StyledOptionWrapper: import("styled-components").StyledComponent<"span", any, {}, never>;
export {};
//# sourceMappingURL=Styles.d.ts.map