import React from 'react'; import { type ElementProps } from '../../../../../types/element/elementProps'; export type InputInlineWrapperProps = ElementProps<'div', React.PropsWithChildren<{ asChild?: boolean; /** * @description 컴포넌트의 cursor 스타일을 지정합니다. */ disabled?: boolean; /** * @description 컴포넌트의 라벨을 지정합니다. 텍스트 스타일이 지정되어 있습니다. */ label?: React.ReactNode; /** * @description 컴포넌트의 설명을 지정합니다. 텍스트 스타일이 지정되어 있습니다. */ description?: React.ReactNode; }>>; export declare const InputInlineWrapper: React.ForwardRefExoticComponent, HTMLDivElement>, "ref">, "children">, "label" | "children" | "disabled" | "asChild" | "description"> & { asChild?: boolean | undefined; /** * @description 컴포넌트의 cursor 스타일을 지정합니다. */ disabled?: boolean | undefined; /** * @description 컴포넌트의 라벨을 지정합니다. 텍스트 스타일이 지정되어 있습니다. */ label?: React.ReactNode; /** * @description 컴포넌트의 설명을 지정합니다. 텍스트 스타일이 지정되어 있습니다. */ description?: React.ReactNode; } & { children?: React.ReactNode; } & React.RefAttributes>; //# sourceMappingURL=InlineWrapper.d.ts.map