export declare const getLabelFromOptions: <T extends {
    toString(): string;
}>(options: {
    label?: T;
    value: T;
}) => string;
