declare type OptionsType = { value: string; label: string; color: string; }[]; export interface SelectPropsType { options: OptionsType; key: string; info: string; failValue: string; } export declare const getSelectTypeAttribute: ({ key, info, text, failValueIndex, }: { key: string; info: string; text?: string | undefined; failValueIndex?: number | undefined; }) => SelectPropsType; export {};