import type { SourceSpecification } from "../types/style-spec";
export type SourceProps = SourceSpecification & {
    id?: string;
    children?: any;
};
export declare function Source(props: SourceProps): any;
