import type { CommonInternalProps } from './utils/common-internal.props'; import type { BackgroundStyleProps, BorderStyleProps, MarginStyleProps, SizeStyleProps } from './utils/style.props'; interface ListWidgetInternalProps extends CommonInternalProps { } export interface ListWidgetStyle extends MarginStyleProps, SizeStyleProps, BackgroundStyleProps, Omit { } export interface ListWidgetProps { children?: any; style?: ListWidgetStyle; } export declare function ListWidget({ children }: ListWidgetProps): any; export declare namespace ListWidget { var __name__: string; var convertProps: (props: ListWidgetProps) => ListWidgetInternalProps; } export {}; //# sourceMappingURL=ListWidget.d.ts.map