export interface RadioItemSelect { value: any; selected: boolean; select: (selected: boolean) => void; userInitiated: boolean; } export declare namespace Selected { const type: import("isly/dist/types/object").IslyObject; const is: (value: RadioItemSelect | any) => value is RadioItemSelect; }