import { O3rRadioElement, RadioElementProfile } from '../elements/radio-element'; import { GroupProfile, O3rGroup } from '../group'; /** * Interface to describe the Radio Group that are used inside a fixture. * As for ComponentFixtureProfile, this abstracts the testing framework that is used by choosing the right * implementation at runtime. */ export interface RadioGroupProfile extends GroupProfile { /** Get of selected items */ getSelectedItem(): Promise; } /** * Mock for RadioGroupProfile class. * This class is used for fixture compilation purpose. */ export declare class O3rRadioGroup extends O3rGroup implements RadioGroupProfile { constructor(sourceElement: O3rRadioElement[]); getSelectedItem(): Promise; } //# sourceMappingURL=radio-group.d.ts.map