export type dataPadDirection = "data-pad-start" | "data-pad-end"; export declare const isResponsiveAttribute: (propName: string) => boolean; type AnyProps = Record; type ResponsivePropsTuple = [AnyProps, AnyProps]; /** * data- attributes can be used to manage item overflow behaviour. Users may * speficy these attributes directly on a Toolbar component, which ultimately * gets wrapped by a FormField. We need to 'lift' these attributes to the form * field and remove them from the props of the nested component. * @param props * @returns */ export declare const liftResponsivePropsToFormField: (props: AnyProps) => ResponsivePropsTuple; export {};