import { default as React } from 'react'; import { BasicInputProps } from '../BaseInput'; interface PostfixInputProps extends BasicInputProps { formatDisplayValue?: (val: string) => string; formatRealValue?: (val: string) => string; postfix?: string; realValue: string; updateRealValue: (val: string) => void; } /** * fyi. decoration 다시 살림 (https://pfcoworkspace.slack.com/archives/C0145TGCZ41/p1701937714740749) */ declare const PostfixInput: ({ ref: forwardedRef, ...props }: PostfixInputProps) => React.JSX.Element; export type { PostfixInputProps }; export { PostfixInput }; //# sourceMappingURL=index.d.ts.map