import type { AlloyComponent } from '../../api/component/ComponentApi'; import type { RepresentingConfig, RepresentingState } from './RepresentingTypes'; declare const onLoad: (component: AlloyComponent, repConfig: RepresentingConfig, repState: RepresentingState) => void; declare const onUnload: (component: AlloyComponent, repConfig: RepresentingConfig, repState: RepresentingState) => void; declare const setValue: (component: AlloyComponent, repConfig: RepresentingConfig, repState: RepresentingState, data: any) => void; declare const getValue: (component: AlloyComponent, repConfig: RepresentingConfig, repState: RepresentingState) => any; declare const getState: (component: AlloyComponent, repConfig: RepresentingConfig, repState: RepresentingState) => RepresentingState; export { onLoad, onUnload, setValue, getValue, getState }; //# sourceMappingURL=RepresentApis.d.ts.map