carbon-react
Version:
A library of reusable React components for easily building user interfaces.
11 lines (10 loc) • 430 B
TypeScript
export interface StyledDateRangeProps {
/** [Legacy] Display labels inline */
labelsInline?: boolean;
/** Render the ValidationMessage above the inputs when validationRedesignOptIn flag is set */
validationMessagePositionTop?: boolean;
}
declare const StyledDateRange: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledDateRangeProps, "theme">;
export default StyledDateRange;