import * as React from 'react'; interface IProps { title?: string; hideBackground?: boolean; backLabel?: string; icon?: () => React.ReactNode; id?: string; goHome?: () => void; children?: React.ReactNode; goBack: () => void; } export declare const ActionPageLight: ({ id, title, hideBackground, icon, backLabel, goBack, goHome, children }: IProps) => React.JSX.Element; export {}; //# sourceMappingURL=ActionPageLight.d.ts.map