import * as React from 'react';
export interface SelectListOption {
    label: string;
    value: string;
}
export interface SelectListProps {
    options: SelectListOption[];
    onChange: (option: SelectListOption) => void;
}
export declare const SelectList: React.FunctionComponent<React.PropsWithChildren<SelectListProps>>;
