import React from 'react'; import { SelectProps } from '.'; declare const meta: { title: string; component: React.FC; args: { options: { text: string; value: string; }[]; placeholder: string; }; }; export declare const Docs: (props: SelectProps) => React.JSX.Element; export default meta;