/// import { typeOptions } from '../../../utils/type/dynamic-rendering.interfaces'; declare type sideT = { icon: string; iconActive: string; id: string; name: string; }; declare type PorchSidesT = { children: any; id: string; text: string; typeOptions: typeOptions; values: sideT[]; }; export declare const PorchSides: ({ ...props }: PorchSidesT) => JSX.Element; export {};