import * as React from 'react'; export declare const CellOperation: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme | undefined; as?: React.ElementType | undefined; }, React.DetailedHTMLProps, HTMLDivElement>, {}>; export type DataListSettingProps = { data: Array>; schema: Array<{ name: string; identifier: string; type: 'text' | 'image' | 'link' | 'radio'; }>; onChange: (newData: Array>) => void; }; export declare const DataListSettings: (props: DataListSettingProps) => import("react/jsx-runtime").JSX.Element;