import { z } from 'zod'; /** * Schema for component props. */ export declare const PropsSchema: z.ZodObject<{ url: z.ZodPipe>, z.ZodURL>; info: z.ZodPipe, z.ZodBoolean>; scrollOffsetTop: z.ZodDefault>>; }, z.core.$strip>; /** * Output type inferred from PropsSchema. * Represents the validated and parsed props for the component. */ export type Props = z.infer; //# sourceMappingURL=props.d.ts.map