import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { GridProps } from '@mui/material'; import type { PropsWithChildren, ReactNode } from 'react'; import React from 'react'; /** Props for {@link ScrollableGridColumn}. */ export interface AddressHistoryColumnProps extends GridProps, PropsWithChildren { heading?: ReactNode; scrollableProps?: FlexBoxProps; } /** Grid column with an optional heading and absolutely positioned scrollable body. */ declare const ScrollableGridColumn: { ({ ref, children, heading, scrollableProps, ...props }: AddressHistoryColumnProps): React.JSX.Element; displayName: string; }; export { ScrollableGridColumn }; //# sourceMappingURL=Column.d.ts.map