export namespace defaultTextInput { export { TextInput as component }; export { textInputStyles as styles }; export { textInputAttributes as attributes }; } export namespace blenderTextInput { export { BlenderTextInput as component }; export { blenderStyles as styles }; export { textInputAttributes as attributes }; } declare const TextInput: import("react").ForwardRefExoticComponent>; declare function textInputStyles(_: any, { before, after }: { before: any; after: any; }): any; declare function textInputAttributes(_: any, { instanceId }: { instanceId: any; }): { id: any; }; declare function BlenderTextInput(props: any): JSX.Element; declare function blenderStyles(_: any, { before, after }: { before: any; after: any; }): { label: any; 'input&': any; }; export {};