import { default as CLInputComponent } from './CLInput.vue'; import { default as CLInputPrefixComponent } from './CLInputPrefix.vue'; import { default as CLInputSuffixComponent } from './CLInputSuffix.vue'; import { default as CLInputPillComponent } from './CLInputPill.vue'; import { default as CLInputColorToolsComponent } from './CLInputColorTools.vue'; declare const CLInput: typeof CLInputComponent & { Prefix: typeof CLInputPrefixComponent; Suffix: typeof CLInputSuffixComponent; Pill: typeof CLInputPillComponent; ColorTools: typeof CLInputColorToolsComponent; }; export { CLInput }; export default CLInput; export type CLInput = InstanceType; export type CLInputPrefix = InstanceType; export type CLInputSuffix = InstanceType; export type CLInputPill = InstanceType; export type CLInputColorTools = InstanceType; export type { CLInputProps } from './CLInput.vue';