export declare type SystemProps = { isMobile?: boolean; }; declare const System: ({ isMobile }: SystemProps) => JSX.Element; export default System;