import * as React from 'react';
interface Option {
    title: string;
    id: string | number;
    [key: string]: any;
}
interface FCProps {
    margin?: 'normal' | 'dense';
    label?: string;
    options: Option[];
    style?: React.CSSProperties;
}
export declare const Select: React.FC<FCProps>;
export {};
