import { PropsWithChildren } from 'react'; import type { ListType } from '../types'; declare type ListControlProps = PropsWithChildren<{ format: ListType; }>; export declare const ListControl: ({ format, children }: ListControlProps) => JSX.Element; export {};