interface ComponentWrapperProps { hasHelperText: boolean; } declare const ComponentWrapper: { parts: string[]; baseStyle: ({ hasHelperText }: ComponentWrapperProps) => { helperErrorText: { marginTop: string; }; }; }; export default ComponentWrapper;