import { CSSStyle, CodeSample } from './_shared'; import { ZTime_Props } from './Time.props'; export * from './Time.helpers'; export * from './Time.props'; export type ZTime_CodeProps = ZTime_Props & { style?: CSSStyle; }; declare function Web(props: ZTime_CodeProps): CodeSample; export declare const Time: { name: string; category: "atoms"; slots: never[]; web: typeof Web; };