import * as React from 'react';
import { Theme } from '../common';
import { FormComponentProps } from '@tomino/dynamic-form';
export declare const groupLabel: (theme: Theme) => string;
declare type HeaderProps = {
    label: string;
    buttons: any;
    className?: string;
    bare?: boolean;
};
export declare const PropertyHeader: ({ children, label, buttons, bare, className }: React.Props<any> & HeaderProps) => JSX.Element;
declare type Props = {
    text: string;
    bare: boolean;
};
export declare const Group: (controlProps: FormComponentProps<Props, any, any> & {
    filter: string;
}) => JSX.Element;
export {};
